home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gp_dosfs.c < prev    next >
C/C++ Source or Header  |  1996-09-05  |  3KB  |  87 lines

  1. /* Copyright (C) 1992, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_dosfs.c */
  20. /* Common routines for MS-DOS (any compiler) and DesqView/X, */
  21. /* which has a MS-DOS-like file system. */
  22. #include "dos_.h"
  23. #include "gx.h"
  24. #include "gp.h"
  25.  
  26. /* ------ Printer accessing ------ */
  27.  
  28. /* Put a printer file (which might be stdout) into binary or text mode. */
  29. /* This is not a standard gp procedure, */
  30. /* but all MS-DOS configurations need it. */
  31. void
  32. gp_set_printer_binary(int prnfno, int binary)
  33. {    union REGS regs;
  34.     regs.h.ah = 0x44;    /* ioctl */
  35.     regs.h.al = 0;        /* get device info */
  36.     regs.rshort.bx = prnfno;
  37.     intdos(®s, ®s);
  38.     if ( regs.rshort.cflag != 0 || !(regs.h.dl & 0x80) )
  39.         return;        /* error, or not a device */
  40.     if ( binary )
  41.         regs.h.dl |= 0x20;    /* binary (no ^Z intervention) */
  42.     else
  43.         regs.h.dl &= ~0x20;    /* text */
  44.     regs.h.dh = 0;
  45.     regs.h.ah = 0x44;    /* ioctl */
  46.     regs.h.al = 1;        /* set device info */
  47.     intdos(®s, ®s);
  48. }
  49.  
  50. /* ------ File names ------ */
  51.  
  52. /* Define the character used for separating file names in a list. */
  53. const char gp_file_name_list_separator = ';';
  54.  
  55. /* Define the string to be concatenated with the file mode */
  56. /* for opening files without end-of-line conversion. */
  57. const char gp_fmode_binary_suffix[] = "b";
  58. /* Define the file modes for binary reading or writing. */
  59. const char gp_fmode_rb[] = "rb";
  60. const char gp_fmode_wb[] = "wb";
  61.  
  62. /* Answer whether a file name contains a directory/device specification, */
  63. /* i.e. is absolute (not directory- or device-relative). */
  64. bool
  65. gp_file_name_is_absolute(const char *fname, unsigned len)
  66. {    /* A file name is absolute if it contains a drive specification */
  67.     /* (second character is a :) or if it start with 0 or more .s */
  68.     /* followed by a / or \. */
  69.     if ( len >= 2 && fname[1] == ':' )
  70.       return true;
  71.     while ( len && *fname == '.' )
  72.       ++fname, --len;
  73.     return (len && (*fname == '/' || *fname == '\\'));
  74. }
  75.  
  76. /* Answer the string to be used for combining a directory/device prefix */
  77. /* with a base file name.  The file name is known to not be absolute. */
  78. const char *
  79. gp_file_name_concat_string(const char *prefix, unsigned plen,
  80.   const char *fname, unsigned len)
  81. {    if ( plen > 0 )
  82.       switch ( prefix[plen - 1] )
  83.        {    case ':': case '/': case '\\': return "";
  84.        };
  85.     return "\\";
  86. }
  87.